name: testsPCE
run_id: commands[0]
env HOME: /home/jenkins
env LANG: C.UTF-8
env PATH: /w/workspace/transportpce-tox-verify-transportpce-master/.tox/testsPCE/bin:/opt/pyenv/bin:/tmp/venv-VEiX/bin:/opt/pyenv/shims:/home/jenkins/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/opt/puppetlabs/bin
env PYTHONHASHSEED: 2823175486
env PIP_DISABLE_PIP_VERSION_CHECK: 1
env PYTHONIOENCODING: utf-8
env PIP_EXTRA_INDEX_URL: https://gitlab.com/api/v4/projects/33090323/packages/pypi/simple
env TOX_ENV_NAME: testsPCE
env TOX_WORK_DIR: /w/workspace/transportpce-tox-verify-transportpce-master/.tox
env TOX_ENV_DIR: /w/workspace/transportpce-tox-verify-transportpce-master/.tox/testsPCE
env VIRTUAL_ENV: /w/workspace/transportpce-tox-verify-transportpce-master/.tox/testsPCE
metadata pid: 30659
cwd: /w/workspace/transportpce-tox-verify-transportpce-master/tests
allow: /w/workspace/transportpce-tox-verify-transportpce-master/.tox/testsPCE/bin/*:launch_tests.sh
cmd: ./launch_tests.sh pce
exit_code: 1
pytest -q transportpce_tests/pce/test01_pce.py
EEEEEEEEEEEEEEEEEEEE                                                     [100%]
==================================== ERRORS ====================================
_______ ERROR at setup of TransportPCEtesting.test_01_load_port_mapping ________

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
____ ERROR at setup of TransportPCEtesting.test_02_load_simple_topology_bi _____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___________ ERROR at setup of TransportPCEtesting.test_03_get_nodeId ___________

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___________ ERROR at setup of TransportPCEtesting.test_04_get_linkId ___________

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
____ ERROR at setup of TransportPCEtesting.test_05_path_computation_xpdr_bi ____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
____ ERROR at setup of TransportPCEtesting.test_06_path_computation_rdm_bi _____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
____ ERROR at setup of TransportPCEtesting.test_07_load_simple_topology_uni ____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___________ ERROR at setup of TransportPCEtesting.test_08_get_nodeId ___________

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___________ ERROR at setup of TransportPCEtesting.test_09_get_linkId ___________

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___ ERROR at setup of TransportPCEtesting.test_10_path_computation_xpdr_uni ____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
____ ERROR at setup of TransportPCEtesting.test_11_path_computation_rdm_uni ____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
_____ ERROR at setup of TransportPCEtesting.test_12_load_complex_topology ______

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___________ ERROR at setup of TransportPCEtesting.test_13_get_nodeId ___________

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
_____ ERROR at setup of TransportPCEtesting.test_14_fail_path_computation ______

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___ ERROR at setup of TransportPCEtesting.test_15_success1_path_computation ____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___ ERROR at setup of TransportPCEtesting.test_16_success2_path_computation ____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
___ ERROR at setup of TransportPCEtesting.test_17_success3_path_computation ____

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
_ ERROR at setup of TransportPCEtesting.test_18_path_computation_before_oms_attribute_deletion _

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
_ ERROR at setup of TransportPCEtesting.test_19_delete_oms_attribute_in_openroadm13toopenroadm12_link _

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
_ ERROR at setup of TransportPCEtesting.test_20_path_computation_after_oms_attribute_deletion _

cls = <class 'test01_pce.TransportPCEtesting'>

    @classmethod
    def setUpClass(cls):
        # pylint: disable=bare-except
        sample_files_parsed = False
        time.sleep(10)
        try:
            TOPO_BI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                            "..", "..", "sample_configs", "honeynode-topo.json")
            with open(TOPO_BI_DIR_FILE, 'r', encoding='utf-8') as topo_bi_dir:
                cls.simple_topo_bi_dir_data = topo_bi_dir.read()
    
            TOPO_UNI_DIR_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "NW-simple-topology.json")
    
            with open(TOPO_UNI_DIR_FILE, 'r', encoding='utf-8') as topo_uni_dir:
                cls.simple_topo_uni_dir_data = topo_uni_dir.read()
    
            TOPO_UNI_DIR_COMPLEX_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                                     "..", "..", "sample_configs", "NW-for-test-5-4.json")
            with open(TOPO_UNI_DIR_COMPLEX_FILE, 'r', encoding='utf-8') as topo_uni_dir_complex:
                cls.complex_topo_uni_dir_data = topo_uni_dir_complex.read()
            PORT_MAPPING_FILE = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                             "..", "..", "sample_configs", "pce_portmapping_121.json")
            with open(PORT_MAPPING_FILE, 'r', encoding='utf-8') as port_mapping:
                cls.port_mapping_data = port_mapping.read()
            sample_files_parsed = True
        except PermissionError as err:
            print("Permission Error when trying to read sample files\n", err)
            sys.exit(2)
        except FileNotFoundError as err:
            print("File Not found Error when trying to read sample files\n", err)
            sys.exit(2)
        except:
            print("Unexpected error when trying to read sample files\n", sys.exc_info()[0])
            sys.exit(2)
        finally:
            if sample_files_parsed:
                print("sample files content loaded")
    
>       cls.processes = test_utils.start_tpce()

transportpce_tests/pce/test01_pce.py:93: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

    def start_tpce():
        if 'NO_ODL_STARTUP' in os.environ:
            print('No OpenDaylight instance to start!')
            return []
        print('starting OpenDaylight...')
        if 'USE_LIGHTY' in os.environ and os.environ['USE_LIGHTY'] == 'True':
            process = start_lighty()
            start_msg = LIGHTY_OK_START_MSG
        else:
            process = start_karaf()
            start_msg = KARAF_OK_START_MSG
        if wait_until_log_contains(TPCE_LOG, start_msg, time_to_wait=100):
            print('OpenDaylight started !')
        else:
            print('OpenDaylight failed to start !')
            shutdown_process(process)
            for pid in process_list:
                shutdown_process(pid)
>           sys.exit(1)
E           SystemExit: 1

transportpce_tests/common/test_utils.py:229: SystemExit
---------------------------- Captured stdout setup -----------------------------
sample files content loaded
starting OpenDaylight...
starting KARAF TransportPCE build...
Searching for pattern 'Transportpce controller started' in karaf.log... Pattern not found after 100 seconds! OpenDaylight failed to start !
=========================== short test summary info ============================
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_01_load_port_mapping
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_02_load_simple_topology_bi
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_03_get_nodeId
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_04_get_linkId
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_05_path_computation_xpdr_bi
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_06_path_computation_rdm_bi
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_07_load_simple_topology_uni
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_08_get_nodeId
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_09_get_linkId
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_10_path_computation_xpdr_uni
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_11_path_computation_rdm_uni
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_12_load_complex_topology
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_13_get_nodeId
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_14_fail_path_computation
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_15_success1_path_computation
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_16_success2_path_computation
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_17_success3_path_computation
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_18_path_computation_before_oms_attribute_deletion
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_19_delete_oms_attribute_in_openroadm13toopenroadm12_link
ERROR transportpce_tests/pce/test01_pce.py::TransportPCEtesting::test_20_path_computation_after_oms_attribute_deletion
20 errors in 2209.44s (0:36:49)